home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-17 | 1.5 KB | 54 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: FWSaveAs.h
- // Release Version: $ ODF 2 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWSAVEAS_H
- #define FWSAVEAS_H
-
- #ifndef FWENVDEF_H
- #include "FWEnvDef.h"
- #endif
-
- #ifndef FWTCOLL_H
- #include "FWTColl.h"
- #endif
-
- #ifndef FWFILESP_H
- #include "FWFileSp.h"
- #endif
-
- #ifndef FWPSTR_H
- #include "FWPStr.h"
- #endif
-
- //------------------------------------------------------------------------------
- // FW_AskSaveAs
- //------------------------------------------------------------------------------
-
- FW_Boolean FW_AskSaveAs (
- short resourceID /* in */,
- FW_CString defaultName /* in */,
- FW_PFileSpecification& whereToSave /* out */,
- short& kindChosen /* out */);
-
- //------------------------------------------------------------------------------
- // FW_AskSaveAsDynamic
- //------------------------------------------------------------------------------
-
- FW_Boolean FW_AskSaveAsDynamic (
- const FW_TOrderedCollection<FW_CString>& items /* in */,
- short defaultItem /* in */,
- FW_CString prompt /* in */,
- FW_CString defaultName /* in */,
- short resourceID /* in */,
- FW_PFileSpecification& whereToSave /* out */,
- short& itemChosen /* out */);
-
- #endif // FWSAVEAS_H
-
-